From: Ken Raeburn Date: Tue, 16 Jul 2002 19:49:19 +0000 (+0000) Subject: (xstricmp): String pointer args now point to const. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~56134 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=23889aba6da5d471797ef5aa1269ae5601179676;p=emacs.git (xstricmp): String pointer args now point to const. --- diff --git a/src/xfaces.c b/src/xfaces.c index 65ce504d270..c6496aa1bd2 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -824,7 +824,7 @@ x_free_gc (f, gc) int xstricmp (s1, s2) - unsigned char *s1, *s2; + const unsigned char *s1, *s2; { while (*s1 && *s2) {